home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / python-gobject / README < prev   
Text File  |  2009-05-13  |  3KB  |  95 lines

  1. PyGObject
  2. =====
  3. Original author: James Henstridge <james@daa.com.au>
  4. Current maintainer: Johan Dahlin <johan@gnome.org>
  5.  
  6. This archive contains bindings for the GLib, GObject and GIO,
  7. to be used in Python. It is a fairly complete set of bindings,
  8. it's already rather useful, and is usable to write moderately
  9. complex programs.  (see the examples directory for some examples
  10. of the simpler programs you could write).
  11.  
  12. If you have any enhancements or bug reports, please file them in
  13. bugzilla at:
  14.   http://bugzilla.gnome.org/enter_bug.cgi?product=pygobject
  15.  
  16. If you have a patch, file the bug first and then use the "create new
  17. attachment" link on the bug's info page.  My preferred format for
  18. patches is unified diff format (ie. diff -u).  Please don't send me
  19. diffs which don't have any context, as these make it very difficult to
  20. see what the patch does.
  21.  
  22. New Versions
  23. ============
  24.  
  25. New versions of this package can be found at:
  26.   http://ftp.gnome.org/pub/GNOME/sources/pygobject/
  27.  
  28.  
  29. Mailing list
  30. ============
  31.  
  32. pygobject share mailing list with pygtk. You can subscribe to it through
  33. the web interface:
  34.   http://www.daa.com.au/mailman/listinfo/pygtk
  35.  
  36.  
  37. Requirements
  38. ============
  39.   * C compiler (GCC and MSVC supported)
  40.   * Python 2.3.5 or higher
  41.   * Glib 2.14.0 or higher
  42.   * libffi (optional)
  43.  
  44. Copyright Information
  45. =====================
  46.  
  47. This software is covered by the GNU Lesser General Public Licence
  48. (version 2.1, or if you choose, a later version).  Basically just don't
  49. say you wrote bits you didn't.
  50.  
  51. Compilation
  52. ===========
  53.  
  54. PyGObject uses the standard autotools for the build infrastructure.  To
  55. build, it should be as simple as running:
  56.  
  57.     $ ./configure --prefix=<prefix where python is installed>
  58.     $ make
  59.     $ make install
  60.  
  61. If your Python interpreter isn't in the path, or is not called
  62. "python", you can set the PYTHON environment variable to the full path
  63. of the interpreter:
  64.  
  65.     $ PYTHON=/prefix/bin/python
  66.     $ export PYTHON
  67.  
  68. If configure can't find GTK+, you may need to set the PKG_CONFIG_PATH
  69. environment variable to help it find the libraries.
  70.  
  71. The "make install" target will generate normal and optimised bytecode
  72. for all the .py files.
  73.  
  74. Note. If you're installing to another prefix than the one where python
  75. is installed you'll need to set the PYTHONPATH variable to the
  76. $prefix/lib/pythonX.Y/site-packages directory created by
  77. the PyGObject installation.
  78.  
  79. Tests
  80. =====
  81.  
  82. After having compiled and installed pygobject, you may want to test them.
  83. There are a number of example programs available in the examples/
  84. subdirectory.
  85.  
  86.  
  87. Getting Help
  88. ============
  89.  
  90. If you have questions about programming with PyGObject, you might want to
  91. send a message to the mailing list (information on subscribing is
  92. above).  Alternatively, your question may be answered in the PyGTK FAQ:
  93.  
  94.     http://www.async.com.br/faq/pygtk/?req=index
  95.